home *** CD-ROM | disk | FTP | other *** search
/ C & C++ Multimedia Cyber Classroom / C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso / src / fig07_04.jar / Ch07 / Fig07_04 / Fig07_04.cpp < prev    next >
C/C++ Source or Header  |  1997-10-20  |  400b  |  20 lines

  1. // Fig. 7.4: fig07_04.cpp
  2. // Demonstrating composition: an object with member objects.
  3. #include <iostream.h>
  4. #include "emply1.h"
  5.  
  6. int main()
  7. {
  8.    Employee e( "Bob", "Jones", 7, 24, 1949, 3, 12, 1988 );
  9.  
  10.    cout << '\n';
  11.    e.print();
  12.  
  13.    cout << "\nTest Date constructor with invalid values:\n";
  14.    Date d( 14, 35, 1994 );  // invalid Date values
  15.    cout << endl;
  16.    return 0;
  17. }
  18.  
  19.  
  20.